module teapo.storage.attached {
export interface UpdateStorage {
update(file: string, property: string, value: string, callback?: (error: Error) => void);
remove(file: string, callback?: (error: Error) => void);
}